9f4a2a405cdb54a5e5a3e7b737e42d87ce7c1cc4,src/main/java/mods/eln/node/transparent/TransparentNodeElementRender.java,TransparentNodeElementRender,removeLoopedSound,#LoopedSound#,273

Before Change



	protected void removeLoopedSound(final LoopedSound loopedSound) {
		if (loopedSoundList.contains(loopedSound)) {
			Minecraft.getMinecraft().getSoundHandler().stopSound(loopedSound);
			loopedSoundList.remove(loopedSound);
		}
	}

After Change



	protected void removeLoopedSound(final LoopedSound loopedSound) {
		if (loopedSoundList.contains(loopedSound)) {
			SoundHandler sh = Minecraft.getMinecraft().getSoundHandler();
			if (sh.isSoundPlaying(loopedSound))
				sh.stopSound(loopedSound);
			loopedSoundList.remove(loopedSound);
		}